home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
26
/
3
/
DISK2638.ZIP
/
MENUS.EXE
/
SAMPLE.MNU
< prev
next >
Wrap
Text File
|
1990-02-03
|
807b
|
47 lines
;This menu is a sample of a simple menu.
;To run this menu type 'MARX SAMPLE'
TextColor Yellow Red
ClearScreen
BoxBorderColor Green Blue
BoxInsideColor Yellow Blue
DrawBox 25 7 32 13
WriteCenter '* Sample Menu *'
Writeln
Writeln
Writeln ' A - Directory'
Writeln ' B - Wide Directory'
Writeln ' C - Run ChkDsk'
Writeln ' D - Type Menu to Screen'
Writeln ' E - Edit This Menu'
Writeln ' F - Drop to Dos'
Writeln ' Esc - Exit'
Writeln
Write ' Select: '
OnKey 'A'
DIR
Pause ;Lets you see the directory before screen clears
Onkey 'B'
DIR/W
Pause
OnKey 'C'
CHKDSK
Pause
OnKey 'D'
TYPE SAMPLE.MNU|MORE
Pause
OnKey 'E'
TEDIT %MenuFileName
OnKey 'F'
@Echo To Return to the SAMPLE menu type EXIT
@Echo .
COMMAND